home *** CD-ROM | disk | FTP | other *** search
/ 207.233.110.77 / 207.233.110.77.tar / 207.233.110.77 / web29 / Tutorial 5 / tables.css < prev    next >
Cascading Style Sheet File  |  2011-02-28  |  895b  |  41 lines

  1. /*
  2.    New Perspectives on HTML and XHTML 5th Edition
  3.    Tutorial 5
  4.    Tutorial Case
  5.  
  6.    Tables Style Sheet
  7.    Author: Richard THomson
  8.    Date:   Feb28, 2011
  9.  
  10.    Filename:         tables.css
  11.    Supporting Files: 
  12.  
  13. */
  14.  
  15. table.schedule        {border: 10px outset rgb(153,0,153); border-collapse:
  16.              collapse; font-family: Arial, Helvetica, sans-serif;
  17.              font-size: 0.7em; width: 100%}
  18.  
  19. table.schedule    th, table.schedule td
  20.             {border: 1px solid gray}
  21.  
  22. table.schedule    thead    {color: white; background-color: rgb(203,50,203)}
  23.  
  24. table.schedule    col.firstCol
  25.             {background-color: rgb(255,255,192); width: 7%}
  26.  
  27. table.schedule    col.dayCols
  28.             {width: 13%}
  29.  
  30. table.schedule    thead tr
  31.             {height: 20px}
  32.  
  33. table.schedule    tbody tr
  34.             {height: 30px}
  35.  
  36. table.schedule    tbody td
  37.             {vertical-align: top; padding: 5px}
  38.  
  39. table.schedule    caption    {caption-side: top; text-align: right}
  40.  
  41.